Events

For each event that is in an object an <EVENT> tag is required with a name attribute name which identifies the event. Within the <EVENT> tag another tag is required called <CODE>. Everything inside the <CODE> tag will be the event code itself. Any carriage return/line feeds will need to be parsed out and replaced with a \n. For example, event code that looks like this in Knowledge Builder:

@REM This is the first line
@REM This is the second line

Becomes this when exporting it from a Knowledge Module:

...
  <CODE>
    @REM This is the first line\n@REM This is the second line
  </CODE>
...